
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
alcalzone-shared
Advanced tools
A set of utilities shared between my projects
Function documentation available here
isArray
and isObject
to use an extensive conditional type to replace what used to work in TS 4.7Undo changes to isObject
from 4.0.6
. TS narrowing in 4.8.2 is broken.
isObject
{}
argumentsisArray
is inferred correctly for readonly
arraysisArray
to be compatible with TS 4.8 changesSortedQueue
: Fixed an issue where inserting an item before the first one would cause the queue to lose track of items
wait()
with Electron if unref
is true
resolve
of DeferredPromise
is no longer optional, except for Promise<void>
isObject
no longer narrows the type of the argument to object
DropLast
-> Lead
TakeLast
-> Last
TakeLastArgument
-> LastArgument
FixedIndizesOf<T[]>
- Like IndizesOf
, but does not include the type number
if the tuple/array is variable-lengthTail<T[]>
- Returns all but the first item's type in a tuple/arrayPush<List[], Item>
- Returns the given tuple/array with the item type appended to itConcat<T1[], T2[]>
- Concatenates the given tuples/arraysTupleOf<T, N>
- Returns a tuple of length N
with item types T
.Range<N>
- Creates a Union of all numbers (converted to string) from 0 to N (exclusive), e.g. Range<4>
is equal to "0" | "1" | "2" | "3"
.RangeFrom<N, M>
- Creates a Union of all numbers from N (inclusive) to M (exclusive), e.g. RangeFrom<2, 4>
is equal to "2" | "3"
.IsGreaterThan<N, M>
- is equal to true
if N > M
, otherwise false
IsLessThanOrEqual<N, M>
- is equal to true
if N <= M
, otherwise false
IsLessThan<N, M>
- is equal to true
if N < M
, otherwise false
IsGreaterThanOrEqual<N, M>
- is equal to true
if N >= M
, otherwise false
CallbackAPIReturnType
now works with strictNullChecks
.Promisify
is no longer experimental and no longer messes up the inferred signature argument namesunref
parameter to async
-> wait(ms, [unref])
FAQs
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.